===
| Command | Usage | Description |
|---|---|---|
| PS1 | PS1='$' |
set the command prompt to $ |
| whoami | whoami |
display logged in user |
| pwd | pwd |
print working directory |
| ls | ls |
list directory contents |
| # 17 list comprehension problems in python | |
| fruits = ['mango', 'kiwi', 'strawberry', 'guava', 'pineapple', 'mandarin orange'] | |
| numbers = [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 17, 19, 23, 256, -8, -4, -2, 5, -9] | |
| # Example for loop solution to add 1 to each number in the list | |
| numbers_plus_one = [] | |
| for number in numbers: | |
| numbers_plus_one.append(number + 1) |
| <?php | |
| /** | |
| * This file is part of GameQ. | |
| * | |
| * GameQ is free software; you can redistribute it and/or modify | |
| * it under the terms of the GNU Lesser General Public License as published by | |
| * the Free Software Foundation; either version 3 of the License, or | |
| * (at your option) any later version. | |
| * | |
| * GameQ is distributed in the hope that it will be useful, |
LLM output has a recognizable signature β hedging, filler, false balance, corporate cadence. This block captures what to do instead. Every principle here is either extracted from Max's corrections, observed in his own writing, or vetted from external sources.
Don't optimize for "sounding human." Good writing sounds human as a side effect. Optimizing for it produces worse writing β fake typos, forced slang, manufactured negativity, programmatic sentence-length wobble. Write well for the actual context; authenticity follows.
Fit the medium. Chat and replies: running prose, minimal formatting, no decorative structure. Docs and specs: structure is expected, use it. Email: prose first, lists for action items. Long-form: pick an angle, don't let dates and milestones become the spine. Over-structuring casual writing is as bad as under-structuring technical writing.
| #!/usr/bin/env bash | |
| # Author: C.J. May @lawndoc | |
| # Usage: cloc-gh <username> | |
| # Prereqs: cloc gh | |
| cloc_repo () { | |
| gh repo clone "$1" temp-linecount-repo -- --depth 1 > /dev/null 2>&1 && | |
| cloc temp-linecount-repo | grep SUM | awk '{ print $5 }' >> line_count.txt && | |
| rm -rf temp-linecount-repo |
| <!DOCTYPE html> | |
| <html lang="fr" dir="ltr"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
This prompt is designed for GPT-5, Claude Opus 4.1, Cursor, Claude Code, and cursor-agent to perform a deep, structured analysis of any codebase without pasting the entire repo into chat.
It guides the LLM to:
codebase-analysis-docs/| <!DOCTYPE html> | |
| <html lang="am"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>α¨α’αα α¨αα³ GIF αα£αͺ | α¨α΄ααα«α αα α α</title> | |
| <script src="https://telegram.org/js/telegram-web-app.js"></script> | |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> | |
| <style> |
| # delete local tag '12345' | |
| git tag -d 12345 | |
| # delete remote tag '12345' (eg, GitHub version too) | |
| git push origin :refs/tags/12345 | |
| # alternative approach | |
| git push --delete origin tagName | |
| git tag -d tagName |
| autoinstall: | |
| version: 1 | |
| packages: | |
| - ubuntu-desktop | |
| - tree | |
| - wget | |
| - curl | |
| - gnupg | |
| - ca-certificates |